
.social-item {
  margin: 0 10px;
}

.social-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  align-items: center;
  justify-content: center;
  margin: 0px 0 15px 0;
  /* top | right | bottom | left */
  text-decoration: none !important;
}

.social-bar a {
  text-decoration: none !important;
  text-decoration-line: none !important;
  text-decoration-color: transparent !important;
  display: flex;
  /* critical for Firefox */
}

.social-bar a:link,
.social-bar a:visited,
.social-bar a:hover,
.social-bar a:active,
.social-bar a:focus {
  text-decoration: none !important;
  text-decoration-line: none !important;
}

.social-item {
  position: relative;
  display: inline-flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: #0a0f2b;
  /* deep blue */
  border: 1px solid #4fe8ff;
  transition: 0.25s ease;
  cursor: pointer;
}

/* icon itself */
.social-item i {
  font-size: 20px;
  color: #4fe8ff;
  transition: 0.25s ease;
}

.social-item i,
.social-item span {
  text-decoration: none;
}

.social-item,
.social-item:link,
.social-item:visited,
.social-item:hover,
.social-item:active {
  text-decoration: none;
}

.social-item:hover {
  transform: scale(1.15);
  box-shadow: 0 0 12px #4fe8ff, 0 0 24px #ff4fd8;
  z-index: 9000;
}

.social-item:hover i {
  color: #ffffff;
  text-shadow: 0 0 6px #0800ff;
}

.social-url {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: #0a0f2b;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #0800ff;
  color: #4fe8ff;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: 0.25s ease;
}

.social-item:hover .social-url {
  opacity: 1;
  bottom: -28px;
}
